HTMLify
index.html
Views: 403 | Author: cody
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <link rel="stylesheet" href="style.css"> <title>Caesar Cipher</title> </head> <body> <h1>Caesar Cipher</h1> <form id="fid1"> <label for="entry">Enter Text/Code:</label><br> <textarea name="entry" id="entry" rows="10" placeholder="Enter Text/Code" value=""></textarea><br> <label for="key">Key Value:</label> <input type="number" id="key" name="key" value=""></input><br> </form> <div class="button-flex"> <button type="button" form="fid1" id="encrypt" name="encrypt" onClick="main(1)">Encrypt</button> <button type="button" form="fid1" id="decrypt" name="decrypt" onClick="main(2)">Decrypt</button> </div> <output id="output"></output> <script type="text/javascript" src="script.js"></script> </body> </html> |